home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / virus / stelth22.zip / DOSMCB.H < prev    next >
Text File  |  1992-02-10  |  683b  |  32 lines

  1. /*
  2. dosmcb.h
  3. Stealth Bomber Version 2.2
  4.  
  5. Kevin Dean
  6. Fairview Mall P.O. Box 55074
  7. 1800 Sheppard Avenue East
  8. Willowdale, Ontario
  9. CANADA    M2J 5B9
  10. CompuServe ID: 76336,3114
  11.  
  12. February 10, 1992
  13.  
  14.     This is the interface to the DOS memory control block routines.
  15.  
  16.     This code is public domain.
  17. */
  18.  
  19.  
  20. /* DOS memory control block structure. */
  21. typedef struct
  22.   {
  23.   char id;        /* MCB ID (0x4D for all but last which is 0x5A). */
  24.   unsigned psp;        /* PSP of the program that owns the block. */
  25.   unsigned size;    /* Size of allocated memory in paragraphs. */
  26.   } MCB;
  27.  
  28.  
  29. MCB far *getmcb(void);
  30. MCB far *nextmcb(MCB far *thismcb);
  31. MCB far *mcb_owner(const void far *ptr);
  32.